Visible
This property assumes a value of "0" if the Tab-Control control is not visible, "1" if it is visible. The visibility is applied to the whole control, it’s not possible to hide and show the individual pages.
• When the Tab-Control is hidden, all the visible controls inside are hidden as well.
• When the Tab-Control is made visible, all the controls inside that don't have their
Visible property set to 0 are made visible as well.
Example - Modify a tab-control to make it invisible
... procedure division. ... modify screen-1-tc-1 visible 0 ... |